home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / prolog / sbprolog / atari / ataribin.zoo / sbp_v3.1 / sbpshell.doc next >
Text File  |  1992-02-20  |  740b  |  25 lines

  1. Quick overview of the commands in SBPshell:
  2.  
  3. pwd     - prints out current path
  4. cd     - changes working directory
  5. edit     - call program editor.prg with supplied command line
  6. ls
  7. dir     - list current directory in brief style
  8. ll     - list current directory with length, date etc.
  9. free     - print free GEMDOS memory 
  10. date     - print date and time
  11.  
  12. to use SBPshell from within SBprolog you can do the following:
  13.  
  14. system(ls). lists directory
  15. system('cd somewhere') changes dir (notice the single quotes!)
  16.  
  17. to use the editor you might want to use the following program.
  18.  
  19. edit(X) :- name(X,Xn),name(Y,[101,100,105,116,32|Xn]),system(Y).
  20.  
  21. then you can type edit('name.p') to call the editor
  22. (single quotes, if a dot is in the filename).
  23.  
  24.  
  25.